body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('wp9764009.webp') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .work-section {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 20px;
  }
  
  h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .thought {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 40px;
  }
  
  .boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .box {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
  }
  
  .box:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
  }
  .bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bottom-buttons .btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.bottom-buttons .btn:hover {
    background-color: #ffcc00;
    color: #333;
    transform: scale(1.1);
}

  